Print XObject README -------------------- The Print Windows XObject for Macromedia Director prints the content of the clipboard, which must be a Device Independent Bitmap. Director uses this format when copying bitmaps into the clipboard. The available methods are: mNew ---- This is the constructor of the XObject. It has no parameters. It is called by Lingo using the following syntax: put Print( mNew ) into printObj The return value is 0 if the creation of the new instance was completed successfully, otherwise it is a negative number. mDispose -------- This method destroys an XObject instance. It requires no parameters. The Lingo syntax is: printObj( mDispose ) The return value is 0 if the instance was correctly destroyed, otherwise it is a negative number. mPrint ------ This method prints the current content of the clipboard, which must be in DIB format. Thus, to print a cast member from Lingo, first copy it into the clipboard: copytoclipboard cast cast_memb and then print it: printObj(mPrint) The return value is 0 if the operation was successfully completed, otherwise it is a negative number.